DBMS-based - traduzione in Inglese
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

DBMS-based - traduzione in Inglese

PROGRAMMING LANGUAGE
Object-based; Object-based (programming); Object-based programming; Object-Based Languages; Object-based languages; Object based

DBMS-based      
= basado en un gestor de bases de datos
Ex: Fig.5.4 shows a full record from a DBMS-based acquisitions file, together with that record in the eventual order to the bookseller.
DBMS (database management system)      
(n.) = gestor de bases de datos
Ex: Loosely, the first type of base may be referred to as IR (Information Retrieval) and the second as DBMS (Data Base Management System).
----
* DBMS-based = basado en un gestor de bases de datos
* DBMS system = gestor de bases de datos
problem based learning         
  • A PBL group at [[Sydney Dental Hospital]]
  • A PBL group at [[Gadjah Mada University]]
STUDENT-CENTERED PEDAGOGY IN WHICH STUDENTS LEARN ABOUT A SUBJECT THROUGH THE EXPERIENCE OF PROBLEM SOLVING
Problem Based Learning; Problem-Based Learning; Problem based learning
(n.) = aprendizaje a través de solución de problemas
Ex: This study is designed to evaluate the impact of problem based learning on the teaching hospital libraries affiliated with the University of Toronto.

Definizione

knowledge-based system
<artificial intelligence> (KBS) A program for extending and/or querying a knowledge base. The related term expert system is normally used to refer to a highly domain-specific type of KBS used for a specialised purpose such as medical diagnosis. The Cyc project is an example of a large KBS. (1999-09-07)

Wikipedia

Object-based language

The term object-based language may be used in a technical sense to describe any programming language that uses the idea of encapsulating state and operations inside objects. Object-based languages need not support inheritance or subtyping, but those that do are also termed object-oriented. Object-based languages that do not support inheritance or subtyping are usually not considered to be true object-oriented languages.

Examples of object-oriented languages, in rough chronological order, include Simula, Smalltalk, C++ (which object model is based on Simula's), Objective-C (which object model is based on Smalltalk's), Eiffel, Xojo (formerly REALbasic), Python, Ruby, Java, Visual Basic .NET, C#, and Fortran 2003. Examples of a language that is object-based, but not object-oriented are early versions of Ada, Visual Basic (VB), JavaScript, and Fortran 90. These languages all support the definition of an object as a data structure, but lack polymorphism and inheritance.

In practice, the term object-based is usually applied to those object-based languages that are not also object-oriented, although all object-oriented languages are also object-based, by definition. Instead, the terms object-based and object-oriented are normally used as mutually exclusive alternatives, rather than as categories that overlap.

Sometimes, the term object-based is applied to prototype-based programming languages, true object-oriented languages that lack classes, but in which objects instead inherit their code and data directly from other template objects. An example of a commonly used prototype-based scripting language is JavaScript.

Both object-based and object-oriented languages (whether class-based or prototype-based) may be statically type-checked. Statically checking prototype-based languages can be difficult, because these languages often allow objects to be dynamically extended with new behavior, and even to have their parent object (from which they inherit) changed, at runtime.